Overload | Description |
---|---|
BinarySearch(T) | Searches for the index at which the item occurs by using a binary search. It is an user responsibility to first sort the list in ascending order. |
BinarySearch(T,IComparer<T>) | Searches for the index at which the item occurs by using a binary search. It is an user responsibility to first sort the list in ascending order. |
BinarySearch(Int32,Int32,T,IComparer<T>) | Searches for the index at which the item occurs by using a binary search. The search is performed only inside the specified list subrange. It is an user responsibility to first sort the list in ascending order. |